home *** CD-ROM | disk | FTP | other *** search
- unit Dllunit;
-
- { Program copyright (c) 1995 by Charles Calvert }
- { Project Name: RUNDLL }
-
- interface
-
- uses
- WinTypes;
-
-
- procedure ShowPictures(Handle: THandle);
- procedure ShowSquares(Handle: THandle);
- procedure ShowFerns(Handle: THandle);
- function About(Dialog: HWnd; Message, WParam: Word; LParam: Longint): Bool;
- procedure HandleButton(Window: HWnd);
- procedure ShowAbout(Window: Hwnd);
- procedure RegisterWinPopup;
- procedure CreateWinPopup;
- function RegisterChild(ParentWindow: HWnd): HWnd;
- function CreateChild(ParentWindow: HWnd): Hwnd;
-
- implementation
-
- procedure ShowPictures; external 'FRACTDLL' index 1;
- procedure ShowSquares; external 'FRACTDLL' index 2;
- procedure ShowFerns; external 'FRACTDLL' index 3;
-
- function About; external 'APIDLL' index 1;
- procedure HandleButton; external 'APIDLL' index 2;
- procedure ShowAbout; external 'APIDLL' index 3;
- procedure RegisterWinPopup; external 'APIDLL' index 4;
- procedure CreateWinPopup; external 'APIDLL' index 5;
- function RegisterChild; external 'APIDLL' index 6;
- function CreateChild; external 'APIDLL' index 7;
-
- end.
-